@font-face {
    font-family: 'e-font';
    src: url(../font/english/Ubuntu-B.ttf),
        url(../font/english/Ubuntu-B.eot),
        url(../font/english/Ubuntu-B.otf),
        url(../font/english/Ubuntu-B.woff),
        url(../font/english/Ubuntu-B.woff2);
}

.galleryContainer{
    width: 50%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 5%;
    box-sizing: border-box;
}
.SliderGallery{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
.images{
    width: 60%;
    height: auto;
    float: left;
    overflow: hidden;
}
.show{
    width: 100%;
    height: auto;
    float: right;
    margin:0 0.5%;
    background-color: rgb(206, 206, 204);
    border-radius: 10px;
    padding: 1em;
    box-sizing: border-box;
}
.show>.show_item{
    width: 100%;
    height: auto;
    float: left;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
/*.show_item>img{*/
/*    width: 100%;*/
/*    height: auto;*/
/*    float: left;*/
/*    aspect-ratio: 3/2;*/
/*    object-fit: cover;*/
/*    display: block;*/
/*}*/
.show_item>img {
    width: 100%;
    height: 100%;
    float: left;
    aspect-ratio: 2 / 2;
    object-fit: cover;
    display: block;
}

.show_item>img::selection { background-color: transparent; }
@media only screen and (max-width:900px){
    .galleryContainer {
        width: 100%;
        padding: 0;
        margin-bottom: 2em;
    }
}